const getServerSideProps = async context => {
const res = await fetch('http://localhost:3000/api' + context.resolvedUrl)
const data = await res.json()
return { props: { data } }
}
const Main = ({ data }) => {
return (
<div>
<h1>Items:</h1>
<ul>
{data.map(item => (
<li>{item}</li>
))}
</ul>
</div>
)
}
export { getServerSideProps }
export default Main
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24